type bytes.readOp

9 uses

	bytes (current package)
		buffer.go#L23: 	lastRead readOp // last read operation, so that Unread* can work correctly.
		buffer.go#L30: type readOp int8
		buffer.go#L35: 	opRead      readOp = -1 // Any other read operation.
		buffer.go#L36: 	opInvalid   readOp = 0  // Non-read operation.
		buffer.go#L37: 	opReadRune1 readOp = 1  // Read rune of size 1.
		buffer.go#L38: 	opReadRune2 readOp = 2  // Read rune of size 2.
		buffer.go#L39: 	opReadRune3 readOp = 3  // Read rune of size 3.
		buffer.go#L40: 	opReadRune4 readOp = 4  // Read rune of size 4.
		buffer.go#L387: 	b.lastRead = readOp(n)